home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Publisher's Toolbox 2.0
/
Internet Publisher's Toolbox.iso
/
internet
/
ntserver
/
wtsource
/
soundex.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-11-29
|
339 b
|
15 lines
#ifndef __SOUNDEX_H__
#define __SOUNDEX_H__
#if defined(WIN32) || defined(__GNUC__)
void Soundex (char *Name, char *Key);
void Phonix (char *Name, char *Key);
void SoundexCode (char *Name, char *Key);
void PhonixCode (char *Name, char *Key);
#else
extern void Soundex ();
extern void Phonix ();
#endif
#endif __SOUNDEX_H__